home *** CD-ROM | disk | FTP | other *** search
/ Champak 130 / Vol 130.iso / games / fall_dow.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2008-11-13  |  418 b   |  18 lines

  1. stop();
  2. this.onEnterFrame = function()
  3. {
  4.    var _loc1_ = this;
  5.    if(_loc1_.getBytesLoaded() < _loc1_.getBytesTotal())
  6.    {
  7.       Total = _loc1_.getBytesTotal() / 1000;
  8.       Received = _loc1_.getBytesLoaded() / 1000;
  9.       Percentage = Received / Total * 100;
  10.       _loc1_.loadingvar = int(Percentage) add "%";
  11.    }
  12.    else
  13.    {
  14.       _loc1_.gotoAndPlay(2);
  15.       _loc1_.onEnterFrame = null;
  16.    }
  17. };
  18.